home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / cgi_rb.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  56 lines

  1. #
  2. #  This script was written by David Maciejak <david dot maciejak at kyxar dot fr>
  3. #
  4. #  Ref: Debian security team
  5. #
  6. #  This script is released under the GNU GPL v2
  7. #
  8.  
  9. if(description)
  10. {
  11.  script_id(15710);
  12.  script_cve_id("CAN-2004-0983");
  13.  
  14.  script_version ("$Revision: 1.1 $");
  15.  name["english"] = "cgi.rb";
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = "
  19. The 'cgi.rb' CGI is installed. Some versions is vulnerable to
  20. remote denial of service.
  21.  
  22. By sending a specially crafted HTTP POST request, a malicious user can force
  23. the remote host to consume a large amount of CPU ressources.
  24.  
  25. *** Warning : Nessus solely relied on the presence of this CGI, it did not
  26. *** determine if you specific version is vulnerable to that problem
  27.  
  28. Solution : Verify that your version is at least 1.8.1 or later
  29. Risk factor : High";
  30.  
  31.  script_description(english:desc["english"]);
  32.  
  33.  summary["english"] = "Checks for the presence of cgi.rb";
  34.  summary["francais"] = "VΘrifie la prΘsence de cgi.rb";
  35.  
  36.  script_summary(english:summary["english"], francais:summary["francais"]);
  37.  
  38.  script_category(ACT_GATHER_INFO);
  39.  
  40.  
  41.  script_copyright(english:"This script is Copyright (C) 2004 David Maciejak");
  42.  family["english"] = "CGI abuses";
  43.  script_family(english:family["english"]);
  44.  script_dependencie("http_version.nasl");
  45.  script_require_ports("Services/www", 80);
  46.  exit(0);
  47. }
  48.  
  49. # The script code starts here
  50. include("http_func.inc");
  51. include("http_keepalive.inc");
  52. port = get_http_port(default:80);
  53.  
  54. res = is_cgi_installed_ka(item:"cgi.rb", port:port);
  55. if(res)security_warning(port);
  56.